home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / falcon / powermix / dsigitap / dt_modul.eng / example / makefile < prev   
Encoding:
Makefile  |  1996-09-18  |  428 b   |  20 lines

  1. # Example makefile for DigiTape Module
  2. # last change: 1.7.93
  3.  
  4. OBJECTS = hall.r HALL.D
  5.  
  6. xyz.x : $(OBJECTS)
  7.     $(RM) xyz.x
  8.  
  9. # build hall.r from hall.rsc
  10. hall.r : hall.rsc
  11.     \dt_modul\rsc_to_c.ttp $*.rsc
  12.  
  13. # build from DSP56000 Assembler Source File C-Source File
  14. # HALL.D and Define File HALL.DH 
  15. HALL.D : HALL.CLN
  16.     \dt_modul\cln_to_d.ttp $*
  17. HALL.CLN : HALL.ASM
  18.     \dt_modul\asm56000.ttp -b \dt_modul\example\$*.ASM
  19.  
  20.